home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_05 / plauger / ioscopy.c < prev    next >
C/C++ Source or Header  |  1994-03-08  |  237b  |  14 lines

  1.  
  2. ----------------- Listing 8: The ios copy constructor --------------
  3.  
  4. // ioscopy -- ios::ios(const ios&)
  5. #include <ios>
  6.  
  7. ios::ios(const ios& rhs)
  8.     {    // construct an ios from copy
  9.     init(0);
  10.     *this = rhs;
  11.     }
  12.  
  13.  
  14.